cde7612f77acbf5cd862efcbc9e41b1726af705e,src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java,HTTPHC4Impl,sample,#URL#String#boolean#number#,273

Before Change


            errorResult(e, res);
            return res;
        } catch (RuntimeException e) {
            res.sampleEnd();
            log.debug("RuntimeException", e);
            errorResult(e, res);
            return res;

After Change



        } catch (IOException e) {
            log.debug("IOException", e);
            if (res.getEndTime() == 0) {
                res.sampleEnd();
            }
            // pick up headers if failed to execute the request
            if (res.getRequestHeaders() != null) {